@font-face {
  font-family: bankgothic;
  src: url('../fonts/bankgothic.ttf');
}

@font-face {
  font-family: pcdown;
  src: url('../fonts/pdown.ttf');
}

#cursor {
  position: absolute;
  z-index: 999999999;
  display:  none;
}

#controls {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size     : 3em;
  color         : #FFF;
  position      : absolute;
  bottom        : 40;
  right         : 40;
  
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000
  ;
}

.controls {
  display: none;
}

.dialog {

font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #252830;
  color           : #fff;
  padding: 20px;
  border-radius: 5px;
    left : 50%;
  top  : 50%;
  transform: translate(-50%, -50%); 
  position      : absolute;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
}

.dialog.big {
  height: 200px;
}

.dialog .head {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
}

.dialog .head p {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding-left: 1em;
    padding-right: 1em;
    color: #6f7890;
    vertical-align: middle;
    background-color: #252830;
}

.dialog input[type="text"] {
    color: #525252;
    background: #f8f8f8;
    border: none;
    padding: 10px;
    border-radius: 3px;
    font-size: 12px;
    width: 100%;
}

.dialog textarea {
  width : 100%;
  height: 128px;
}

.dialog button {
    color: #fff;
    padding: 7px 12px 7px 12px;
    font-size: 15px;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: 1px solid #1997c6;
    background: #1997c6;
    border-radius: 4px;
    outline: none;
    transition: 0.25s;
}

.dialog button:hover {
    cursor: pointer;
    background: #167da3;
}

.dialog button[name="submit"] {
  width : 75%;
  height: 32px;
}

.dialog button[name="cancel"] {
  width : 25%;
  height: 32px;
}